From f68c073e33a078b9c3574c5c9a02f44f13f39cb3 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 14 Jun 2011 21:53:53 -0400 Subject: [PATCH] Remove a redundant NULL check --- gtk/gtkprinteroption.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gtk/gtkprinteroption.c b/gtk/gtkprinteroption.c index c2ba064f20..b2f4d106ec 100644 --- a/gtk/gtkprinteroption.c +++ b/gtk/gtkprinteroption.c @@ -178,8 +178,7 @@ gtk_printer_option_set (GtkPrinterOption *option, return; if ((option->type == GTK_PRINTER_OPTION_TYPE_PICKONE || - option->type == GTK_PRINTER_OPTION_TYPE_ALTERNATIVE) && - value != NULL) + option->type == GTK_PRINTER_OPTION_TYPE_ALTERNATIVE)) { int i; @@ -195,7 +194,7 @@ gtk_printer_option_set (GtkPrinterOption *option, if (i == option->num_choices) return; /* Not found in available choices */ } - + g_free (option->value); option->value = g_strdup (value); -- 2.30.2